home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / fsprefix / fsprefixInt.h < prev    next >
C/C++ Source or Header  |  1990-10-10  |  1KB  |  45 lines

  1. /*
  2.  * prefixInt.h --
  3.  *
  4.  *    Declarations of data structures and variables private to the 
  5.  *    fsprefix module.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/fsprefix/RCS/fsprefixInt.h,v 9.1 90/10/08 12:50:49 mendel Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _FSPREFIXINT
  20. #define _FSPREFIXINT
  21.  
  22. #include <stdio.h>
  23. #include <fsprefix.h>
  24.  
  25. /* constants */
  26.  
  27. /* data structures */
  28.  
  29. /*
  30.  * A list of hosts that can use a domain is kept for exported prefixes.
  31.  */
  32. typedef struct FsprefixExport {
  33.     List_Links    links;
  34.     int        spriteID;
  35. } FsprefixExport;
  36.  
  37. /* procedures */
  38.  
  39. extern void FsprefixDone _ARGS_((Fsprefix *prefixPtr));
  40. extern void FsprefixHandleCloseInt _ARGS_((Fsprefix *prefixPtr, int flags));
  41. extern void FsprefixIterate _ARGS_((Fsprefix **prefixPtrPtr));
  42.  
  43. #endif /* _FSPREFIXINT */
  44.  
  45.